home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 050 / madtrb10.arc / README.TXT < prev    next >
Encoding:
Text File  |  1986-05-16  |  2.9 KB  |  61 lines

  1. ***********************************************************************
  2.                        Madison IBM-PC Users' Group
  3.                     Turbo Pascal Library Diskette # 10
  4.  
  5. Featuring:  Instruction on Data Structures.
  6.             The following are a collection of Pascal assignments and
  7.             solutions from a Data Structures course taken
  8.             by Chris Maeder.
  9.  
  10. -----------------------------------------------------------------------
  11. This diskette contains PROGRAMS and or DATA determined to be in the
  12. PUBLIC DOMAIN provided as a service of the GROUP for the use of it's
  13. members.  The Madison IBM-PC User's Group will not be liable for any
  14. damages, including any lost profits, lost savings or other incidental
  15. or consequential damages arising out of the use of or inability to use
  16. the contents, even if the GROUP has been advised of the possibility of
  17. such damages, or for any claim by any other party.
  18. -----------------------------------------------------------------------
  19. Released 12/18/85
  20. ***********************************************************************
  21. Title                 Description
  22. ------------  ---------------------------------------------------------
  23. README   TXT  The file you are now reading
  24.  
  25.               The following is a Pascal assignment in data structures.
  26.               It implements a graph for analyzing data.  It is probably
  27.               of use to you if you want to learn something about graph
  28.               data structures.
  29. GRAPH    DOC   Assignment.
  30. GRAPH    PAS   Program.
  31. GRAPH    FIL   Data file.
  32.  
  33.               The following is a Pascal assignment in data
  34.               structures.  It implements a hash table and linked list
  35.               for storing data using pointers.  It is probably of use
  36.               to you if you want to learn something about chain bucket
  37.               hashing and pointers.
  38. HASH     DOC   Assignment.
  39. HASH     PAS   Program.
  40. HASH     FIL   Data file.
  41.  
  42.               The following is a Pascal assignment in data structures.
  43.               It implements a stack for storing data using pointers.
  44.               It is probably of use to you if you want to learn something
  45.               about stack data structures and pointers.
  46. STACK    DOC   Assignment.
  47. STACK    PAS   Program.
  48. STACK    FIL   Data file.
  49.  
  50.               The following is a Pascal assignment in data structures.
  51.               It implements a doubly linked queue, a doubly linked circular
  52.               queue, and a binary search tree for storing data using pointers.
  53.               It is probably of use to you if you want to learn something about
  54.               the previously stated data structures and pointers.
  55. TREE     DOC   Assignment.
  56. TREE     PAS   Program.
  57. TREE     INC   Include file.
  58. TREE     FIL   Data file.
  59.  
  60. TRANSFER DAT   Filecat disk library data transfer file
  61. -----------------------------------------------------------------